home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / redhat-RHSA-2003-246.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  76 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5. # The text of this plugin is (C) Red Hat Inc.
  6.  
  7. if ( ! defined_func("bn_random") ) exit(0);
  8. if(description)
  9. {
  10.  script_id(12413);
  11.  script_version ("$Revision: 1.3 $");
  12.  script_cve_id("CAN-2003-0466");
  13.  
  14.  name["english"] = "RHSA-2003-246: wu";
  15.  
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = '
  19.  
  20.   Updated wu-ftpd packages are available that fix an off-by-one buffer
  21.   overflow.
  22.  
  23.   The wu-ftpd package contains the Washington University FTP (File Transfer
  24.   Protocol) server daemon. FTP is a method of transferring files between
  25.   machines.
  26.  
  27.   An off-by-one bug has been discovered in versions of wu-ftpd up to and
  28.   including 2.6.2. On a vulnerable system, a remote attacker would be able
  29.   to exploit this bug to gain root privileges.
  30.  
  31.   Red Hat Enterprise Linux contains a version of wu-ftpd that is affected by
  32.   this bug, although it is believed that this issue will not be remotely
  33.   exploitable due to compiler padding of the buffer that is the target of the
  34.   overflow. However, Red Hat still advises that all users of wu-ftpd upgrade
  35.   to these erratum packages, which contain a security patch.
  36.  
  37.   Red Hat would like to thank Wojciech Purczynski and Janusz Niewiadomski of
  38.   ISEC Security Research for their responsible disclosure of this issue.
  39.  
  40.  
  41.  
  42.  
  43. Solution : http://rhn.redhat.com/errata/RHSA-2003-246.html
  44. Risk factor : High';
  45.  
  46.  script_description(english:desc["english"]);
  47.  
  48.  summary["english"] = "Check for the version of the wu packages";
  49.  script_summary(english:summary["english"]);
  50.  
  51.  script_category(ACT_GATHER_INFO);
  52.  
  53.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  54.  family["english"] = "Red Hat Local Security Checks";
  55.  script_family(english:family["english"]);
  56.  
  57.  script_dependencies("ssh_get_info.nasl");
  58.  
  59.  script_require_keys("Host/RedHat/rpm-list");
  60.  exit(0);
  61. }
  62.  
  63. include("rpm.inc");
  64. if ( rpm_check( reference:"wu-ftpd-2.6.1-21", release:"RHEL2.1") )
  65. {
  66.  security_hole(0);
  67.  exit(0);
  68. }
  69.  
  70. if ( rpm_exists(rpm:"wu-", release:"RHEL2.1") )
  71. {
  72.  set_kb_item(name:"CAN-2003-0466", value:TRUE);
  73. }
  74.  
  75. set_kb_item(name:"RHSA-2003-246", value:TRUE);
  76.